home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / GE550.M3 < prev    next >
Text File  |  1996-04-01  |  4KB  |  138 lines

  1. name GE 550
  2.  
  3. N >4
  4. G 2
  5. g >2 G
  6. X -3>4
  7. Y -3>4
  8. A -00 X
  9. B -00 Y
  10. R -3>4
  11. Z 3>4
  12. I 3>4
  13. J 3>4
  14. Q -3>4
  15. P -3>4
  16. F 3>2
  17. K -3>4
  18. D 2
  19. S 2
  20. T 2
  21. M 2
  22.  
  23. ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85  # List of g codes that are modal    
  24.  
  25. Sequence#s N 1 5 5                    # Char, freq, incr & start          
  26.  
  27. HCode X                               # X or X U  'Horizontal char.       
  28. VCode Y                               # Y or Y V  'Vertical char.         
  29. Dcode Z                               # Depth char.                       
  30. FeedCode F                            # Feed rate char.                   
  31.  
  32. Comment ( )                           # Begin End comment char.           
  33. Spaces? Y                             # Y or N  'Spaces between words     
  34.  
  35. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  36. Coolant 8 9 7                         # On, Off & Mist m codes            
  37. DComp 41 42 40                        # Left, Right & Cancel m codes      
  38. LComp 43 49                           # On & Off codes                    
  39.  
  40. Feed G1                             # Linear move                       
  41. Rapid G0                            # Rapid positioning word            
  42.  
  43. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  44.  
  45. Work G                                # Work offset register              
  46.  
  47. Cw G2                               # Circular move clockwise           
  48. Ccw G3                              # Circular move counter clockwise   
  49.  
  50. Incremental? N                        # Y or N  'Inc or abs output        
  51. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  52. ByQuadrants? Y                        # Y or N  'Break arcs at quadrants  
  53.  
  54. CtrCode I J                           # I J or R or I J K L               
  55. Helical? N
  56.  
  57. RevSigns Z                            # List of letters to reverse signs  
  58.  
  59. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  60.  
  61. Drill                                 # Drilling canned/manual cycle      
  62. G81 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  63. end cancel
  64.  
  65. Peck                                  # Pecking canned/manual cycle       
  66. G83 X[H] Y[V] Z[D] Q[VBite] R[Vclear] F[FRate]
  67. end cancel
  68.  
  69. Tap                                   # Tapping canned/manual cycle       
  70. G84 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  71. end cancel
  72.  
  73. LTap                                  # Left handed tapping cycle         
  74. G74 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  75. end cancel
  76.  
  77. Ream                                  # Reaming canned/manual cycle       
  78. G85 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  79. end cancel
  80.  
  81. Bore                                  # Boring canned/manual cycle        
  82. G86 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  83. end cancel
  84.  
  85. Back                                  # Back boring canned/manual cycle   
  86. G87 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  87. end cancel
  88.  
  89. Cancel                                # Cancel a canned/manual cycle      
  90. G80
  91. end
  92.  
  93. StartCode                             # Start of the program              
  94. End
  95.  
  96. 1stToolChange                         # First tool change                 
  97. G90 M[Direct]
  98. G0 X[H] Y[V] S[Speed] T[Tool] M6
  99. Z[D]
  100. End
  101.  
  102. Infeed                                # Enable cutter comp                
  103. G1 X[H] Y[V] F[FRate]
  104. g91
  105. G1 A[HVector] B[VVector]
  106. G[Side] I[HVector] J[VVector] D[DComp]
  107. G90
  108. G86 R[-.1] Z[D] F[Plunge] D[LComp]
  109. F[Frate]
  110. end
  111.  
  112. Outfeed                               # Disable cutter comp               
  113. G87 R0 Z[D] D0
  114. G40
  115. end
  116.  
  117. ToolChange                            # Secondary tool changes            
  118. g91 M9
  119. G28 Z0 M5
  120. T[Tool]
  121. M6 S[Speed]
  122. g91 G45 Z0 D[LComp] M[Direct]
  123. G90 G92 X0 Y0 Z1 M[Cool]
  124. G0 X[H] Y[V]
  125. Z[Rplane]
  126. End
  127.  
  128. EndCode                               # End of the program                
  129. g91 M9
  130. G28 Z0 M5
  131. G28 X0 Y0
  132. T1
  133. M6 S21
  134. M30
  135. End
  136.  
  137.  
  138.